body{
    margin: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    flex-direction: column;
}
 .Main-box{
    height: 350px;
    width: 950px;
    background-color: white;
    border: 1px solid white;
    border-radius: 28px;
    padding: 10px;
    box-shadow: 0px 0px 12px rgba(0,0,0,0.15);
    display: flex;
}
.left{
    width: 50%;
    padding: 15px ;
}
 .pic{
    width: 35px;
    height: 35px;
    padding: 5px;

}
.text{
    font-size: 45px;
    font-weight: 300;
    margin: 5px;
}
.text2{
    display: block;
    margin-top: 15px;
    padding: 5px;
}
.right{
    width: 50%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    justify-content: center;
    padding-right: 10px;
    position: relative;
}
.name1{
    width: 400px;
    height: 30px;
    padding: 10px;
    margin-top: -30px;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 16px;
}
.name2{
    height: 30px;
    width: 400px;
    padding: 10px;
    margin-top: 25px;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 16px;
}
.btn{
    width: 80px;
    height: 40px;
    background-color: #0B57D0;
    color: white;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    margin-top: 25px;
    position: absolute;
    bottom: 0;
    right: 0;
    margin-right: 45px;
    margin-bottom: 15px; 
}
.btn:hover{
    background-color:rgb(25,100,250);
}
.footer{
    width: 950px;
    height: 20px;
    display: flex;
    align-items: center;
    margin-top: 10px;
    position: relative;
}
.left-footer{
    font-size: 10px;
    margin-left: 10px;
}
.right-footer{
    font-size: 10px;
    position: absolute;
    right: 0;
}
.right-footer > a{
    margin-left: 20px;
    text-decoration:none;
    color: black;
    margin-right: 10px;;
}
.right-footer>a:hover{
    color: #0B57D0;
}